home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 5 / BBS in a Box -Volume V (BBS in a Box) (April 1992).iso / Files / Bus / D-E / Excel Functions.cpt / Excel Commands (TEXT) < prev    next >
Encoding:
Text File  |  1990-10-12  |  7.9 KB  |  132 lines  |  [TEXT/MSWD]

  1. ABS(number)    Absolute value of number
  2. AND(logical1,logical2,…)    TRUE if every argument is TRUE, otherwise, FALSE
  3. AREAS(reference)    Number of areas in reference
  4. AVERAGE(number1,number2,…)    Average of numbers in numbers
  5. CELL(type_of_info,reference)    Information about formatting, location, or contents of upper-left cell in reference
  6. CHOOSE(index_number,value1,value2,…)    Use index_number to select a value from values
  7. COLUMN(reference)    Column numbers in reference
  8. COLUMNS(array)    Number of columns in array
  9. COUNT(value1,value2,…)    Count of numbers in values
  10. DATE(year,month,day)    Serial number of specified date
  11. DATEVALUE(date_text)    Serial number of date_text
  12. DAVERAGE(database,field,criteria)    Average of numbers in specified field of records in database matching criteria
  13. DAY(serial_number)    Converts serial_number to a day of the month
  14. DCOUNT(database,field,criteria)    Count of numbers in specified field of records in database matching criteria
  15. DCOUNTA(database,field,criteria)    Count of non-empty cells in specified field of records in database matching criteria
  16. DDB(cost,salvage,life,period,factor)    Depreciation of an asset using the double-declining balance method
  17. DMAX(database,field,criteria)    Maximum of numbers in specified field of records in database matching criteria
  18. DMIN(database,field,criteria)    Minimum of numbers in specified field of records in database matching criteria
  19. DPRODUCT(database,field,criteria)    Product of numbers in specified field of records in database matching criteria
  20. DSTDEV(database,field,criteria)    Standard Deviation of numbers in specified field of records in database matching criteria
  21. DSTDEVP(database,field,criteria)    Standard Deviation of a population, based on the entire population, using numbers in specified field of records in database matching criteria
  22. DSUM(database,field,criteria)    Sum of numbers in specified field of records in database matching criteria
  23. DVAR(database,field,criteria)    Estimate of variance of a population, based on a sample, using numbers in specified field of records in database matching criteria
  24. DVARP(database,field,criteria)    Variance of a population, based on the entire population, using numbers in specified field of records in database matching criteria
  25. EXP(number)    e(2.718…) to the power number
  26. FACT(number)    Factorial of number
  27. FALSE()    Logical value FALSE
  28. FV(rate,nper,pmt,pv,type)    Future value of investment
  29. GROWTH(known_y’s,known_x’s,new_x’s)    Values on exponential trend y=b*m^x
  30. HLOOKUP(lookup_value,table_array,row_index_num)    Value in a table selected by lookup_value
  31. HOUR(serial_number)    Converts serial_number to an hour of the day
  32. IF(logical_test,value_if_true,value_if_false)    Value_if_true if logical_test is TRUE; value_if_false if logical_test is FALSE
  33. INDEX(array,row_num,column_num)    Reference in ref or value in array selected by index values
  34. INDEX(ref,row_num,column_num,area_num)    
  35. INDIRECT(ref_text,type_of_ref)    Contents of the cell from its ref
  36. INT(number)    Number rounded down to the nearest integer
  37. IPMT(rate,per,nper,pv,fv,type)    Interest payment for an investment over a given period
  38. IRR(values,guess)    Internal rate of return of values
  39. ISBLANK(value)    TRUE if value is blank
  40. ISERR(value)    TRUE if value is any error value except #N/A
  41. ISERROR(value)    TRUE if value is any error value
  42. ISLOGICAL(value)    TRUE if value is a logical value
  43. ISNA(value)    TRUE if value is the error value #N/A
  44. ISNONTEXT(value)    TRUE if value is not text
  45. ISNUMBER(value)    TRUE if value is a number
  46. ISREF(value)    TRUE if value is reference
  47. ISTEXT(value)    TRUE if value is text
  48. LINEST(known_y’s,known_x’s)    Parameters of linear trend y=m*x+b
  49. LN(number)    Natural logarithm of number
  50. LOG(number,base)    Logarithm of number in base
  51. LOG10(number)    Base 10 logarithm of number
  52. LOGEST(known_y’s,known_x’s)    Parameters of exponential trend y=b*m^x
  53. LOOKUP(lookup_value,array)    Value in a table selected by lookup_value
  54. LOOKUP(lookup_value,lookup_vector,result_vector)    
  55. MATCH(lookup_value,lookup_array,type_of_match)    Index of a value selected by lookup_value
  56. MAX(number1,number2,…)    Maximum number in numbers
  57. MDETERM(array)    Determinant of array
  58. MIN(number1,number2,…)    Minimum number in numbers
  59. MINUTE(serial_number)    Converts serial_number to an hour of the day
  60. MINVERSE(array)    Inverse of matrix or array
  61. MIRR(values,finance_rate,reinvest_rate)    Modified internal rate of return of values
  62. MMULT(array1,array2)    Matrix product of array1 and array2
  63. MOD(number,divisor_number)    Remainder of number divided by divisor_number
  64. MONTH(serial_number)    Converts serial_number to a month of the year
  65. N(value)    Value translated into a number
  66. NA( )    Error value #N/A
  67. NOT(logical)    TRUE if logical is FALSE;FALSE if logical is TRUE
  68. NOW()    Serial_number of current date and time
  69. NPER(rate,pmt,pv,fv,type)    Number of payments of investment
  70. NPV(rate,value1,value2,…)    Net present value of values
  71. OR(logical1,logical2,…)    TRUE if any argument is TRUE; otherwise, FALSE
  72. PI()    Value of π
  73. PMT(rate,nper,pv,fv,type)    Periodic payment of investment
  74. PPMT(rate,per,nper,pv,fv,type)    Payment on the principal for an investment over a given period
  75. PRODUCT(number1,number2,…)    Product of numbers in numbers
  76. PV(rate,nper,pmt,fv,type)    Present value of investment
  77. RAND()    Random number between 0 and 1
  78. RATE(nper,pmt,pv,fv,type,guess)    Rate returned on investment
  79. ROUND(number,number_of_digits)    Rounds number to number_of_digits
  80. ROW(reference)    Row numbers in reference
  81. ROWS(array)    Number of rows in array
  82. SECOND(serial_number)    Converts serial_number to a second
  83. SIGN(number)    Sign of number
  84. SLN(cost,salvage,life)    Straight-line depreciation for an asset
  85. SQRT(number)    Square root of number
  86. STDEV(number1,number2,…)    Estimate of standard deviation of a population based on a sample
  87. STDEVP(number1,number2,…)    Standard deviation of a population based on the entire population
  88. SUM(number1,number2,…)    Sum of numbers in numbers
  89. SYD(cost,salvage,life,per)    Sum-of-years’ digits depreciation for an asset
  90. T(value)    Value translated into text
  91. TIME(hour,minute,second)    Serial number of a specified time
  92. TIMEVALUE(time_text)    Serial number of a time_text
  93. TRANSPOSE(array)    Transpose of array
  94. TREND(known_y’s,known_x’s,new_x’s)    Values on linear trend
  95. TRUE()    Logical value TRUE
  96. TRUN(number)    Integer part of number
  97. TYPE(value)    Type of value
  98. VAR(number1,number2,…)    Estimate of variance of a population based on a sample
  99. VARP(number1,number2,…)    Variance of a population based on the entire population
  100. VLOOKUP(lookup_value,table_array,col_index)    Value in a table selected by lookup_value
  101. WEEKDAY(serial_number)    Converts serial_number to a day of the week
  102. YEAR(serial_number)    Converts serial-number to a year
  103. CHAR(number)    ANSI character corresponding to number
  104. CLEAN(text)    Removes non-printable characters from text
  105. CODE(text)    ASCII code of the first character in text
  106. DOLLAR(number,decimals)    Rounds number and gives as text in currency format
  107. EXACT(text1,text2)    Tests to see if text1 and text2 are exactly the same
  108. FIND(find_text,within_text,start_at_num)    Finds find_text within within_text
  109. FIXED(number,decimals)    Rounds number and gives as text
  110. LEFT(text,number_of_characters)    Extracts first number_of_characters from text
  111. LEN(text)    Length of text
  112. LOWER(text)    Converts text to lowercase
  113. MID(text,start_number,number_of_characters)    Extracts number_of_characters from text
  114. PROPER(text)    Converts text to initial capitals
  115. REPLACE(old_text,start_num,num_chars,new_text)    Replaces num_chars characters in old_text with new_text
  116. REPT(text,number_times)    Repeats text number_times times
  117. RIGHT(text,number_of_chars)    Last number_of_chars characters in text
  118. SEARCH(find_text,within_text,start_at_num)    Searches for find_text within within_text
  119. SUBSTITUTE(text,old_text,new_text,instance_number)    Substitutes new_text for old_text in text
  120. TEXT(value,format_text)    Converts value to text using format format_text
  121. TRIM(text)    Removes spaces from text
  122. UPPER(text)    Converts text to uppercase
  123. VALUE(text)    Converts text to a number
  124. ACOS(number)    Arccosine of number
  125. ASIN(number)    Arcsine of number
  126. ATAN(number)    Arctangent of number
  127. ATAN2(x_number,y_number)    Arctangent of point (x_number,y_number)
  128. COS(radians)    Cosine of radians
  129. SIN(radians)    Sine of radians
  130. TAN(radians)    Tangent of radians
  131.  
  132.